@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400..700&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Oswald:wght@200..700&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');



* {
    margin: 0;
    padding: 0;
}



body{
    overflow-x: hidden; /* Empêcher le défilement horizontal */
}

.contact-info {
    width:  100%;
    height: 3%;
    z-index: 999999;
    background-color: white; /* Couleur de fond blanche */
    padding: 10px 0; /* Espacement intérieur en haut et en bas */
    text-align: center; /* Centrer le texte */
    font-family: 'Playfair Display', serif; /* Utilisation de la même police que le reste */
    color: #0d5a34; /* Même couleur verte que le menu pour un aspect cohérent */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Légère ombre pour séparer visuellement */
    position: fixed;
}

.contact-info p {
    margin: 0;
    font-size: 16px;
}

.menu {
    display: none; /* Cacher le menu par défaut */
    position: fixed;
    top: 0px; /* On abaisse le menu de 50px */
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #0d5a34;
    
}

.container, .menu, .menu-container, .diapo, .wrapper, .Presentationtext {
    max-width: 100%;
    box-sizing: border-box;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


.menu.show-menu {
display: block; /* Afficher le menu lorsque la classe 'show-menu' est ajoutée */
}



.menu-container {
        
    padding-bottom: 1%;
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Even spacing between logo and buttons */
    padding: 20px; /* Optional: Adjust padding if necessary */
    background-color: #0d5a34;

}


.logo {
display: flex;
width: 60px;
}

.logo img {
width: 100%;
}

.logo img:hover {
color: green;
}

.site-name {
font-family: "playfair Display", sans-serif;
text-align: center;
font-size: 30px;
line-height: 30px;
margin-left: 0px;
color: white;
}

.site-name,
.menu-listing a {
    text-decoration: none; /* Supprime le soulignement */


}



.site-name:hover {
color: green;
}

.Consiergerie {
font-family: "Dancing Script", cursive;
font-optical-sizing: auto;
font-style: normal;
}

.menu-listing {
display: flex;
list-style: none;
margin-left: auto;
}

.menu-listing li:nth-child(2) a {   
        
    color: green;
    
    }

.menu-listing a {
font-family: "playfair Display", sans-serif;
text-decoration: none;
color: white;
padding: 10px 50px;
}

.menu-listing a:hover {
    transition: color 0.3s ease; /* Transition douce pour le changement de couleur */
    color: green;
}

.mobile-menu {
width: 100%;
position: sticky;
top: 0px;
height: 80px;
background: #0d5a34;
z-index: 960;
padding-inline: 20px;
box-sizing: border-box;
display: flex;
align-items: center;
}

.material-symbols-outlined{
    color: white;
    margin-top: 10px;
    font-size: 48px;
    
}

.ImagePresentation {
position: relative; /* Assure le positionnement de l'image */
display: block;
width: 100%;
height: auto;
display: inline-block;
z-index: 5; /* Z-index inférieur à celui du nav */
transition: transform 0.3s ease-in-out;
margin-top: 0px; /* Ajustez selon vos besoins */
filter: brightness(60%); /*Assombrir l'image*/
}




.wrapper {
    position: absolute; /* Permet le positionnement indépendant */
    top: 150px; /* Ajustez cette valeur pour le positionnement désiré de wrapper */
    left: 50%;
    transform: translateX(-50%); /* Centre horizontalement */
    z-index: 10;
    font-size: 0px;
    width: 100%;
    text-align: center;
}

.wrapper .wrapper1,
.wrapper .wrapper2 {
    display: block; /* Chaque titre occupe une ligne complète */
    margin-bottom: 20px; /* Espacement entre les deux titres */
    color: white;
    font-size: 40px; /* Taille du texte augmentée */
    line-height: 1.2; /* Hauteur de ligne ajustée */
    text-transform: uppercase; /* Conversion du texte en majuscules */
    text-align: center; /* Centrer le texte horizontalement */
}

.wrapper1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 8%;
}

.wrapper2 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
}

.wrapper1, .wrapper2 {
    opacity: 0; /* Début en invisible */
    animation: slideDown 1s ease forwards;
}

.wrapper1 {
    animation-delay: 0.5s; /* Début de l'animation avec un petit délai */
}

.wrapper2 {
    animation-delay: 1s; /* Début de l'animation un peu plus tard */
}




#bottom-arrow {
    display: block;
    margin: 12% auto 0; /* Centre le bouton et ajoute un espace au-dessus */
    font-size: 2rem; /* Taille de l'icône */
    color: white; /* Couleur de l'icône */
    animation: bounce 2s infinite; /* Animation pour attirer l'attention */
}

/* Ajout d'une animation pour l'arrivée de l'image depuis la gauche */
.presentation-image {
    width: 40%;
    border-radius: 50%;
    opacity: 0; /* Invisible au départ */
    border: 8px solid #0d5a34; /* Bordure verte de 5px */
    transform: translateX(-100%); /* Hors écran à gauche */
    transition: transform 1s ease, opacity 1s ease; /* Animation douce */
}

/* Classe qui déclenche l'animation */
.presentation-image.show {
    opacity: 1;
    transform: translateX(0); /* Retourne à sa position normale */
}

.presentation-section {
    font-family: "playfair Display", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    padding: 20px;
}

.presentation-content {
    flex: 1;
    margin-left: 20px;
    padding-bottom: 20px;
}
.presentation-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px; /* Ajoute un espacement sous "Marika" */
}

.presentation-content h3 {
    font-size: 24px;
    margin-bottom: 15px; /* Ajoute un espacement sous "Fondatrice de Gabi Conciergerie" */
}

.presentation-content p {
    font-size: 18px;
    margin-bottom: 20px; /* Ajoute un espacement sous "Échangez vos clefs contre de la tranquillité !" */
}


.green-button {
    text-decoration: none;
    list-style: none;
    margin-top: 30px;
    background-color: #0d5a34; /* Couleur verte du bouton */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.green-button:hover {
    background-color: #09632d; /* Couleur plus foncée au survol */
}



.containerbottom {
    
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Ajustez selon le besoin */
    background-color: #0d5a34;
    width: 100%;
    position: relative; /* Utilisation de position relative pour bien placer les éléments */
    
}


.containerbottom .button {
    display: inline-block;
    margin: 0 5px;
    height: 60px;
    width: 60px;
    background-color: white;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: width 0.1s ease; /* Animation de transition pour l'élargissement */
    overflow: hidden; /* Masque tout ce qui dépasse les dimensions du bouton */
}

.containerbottom .button:hover {
    width: 200px; /* Largeur augmentée au survol */
}

.containerbottom .button .icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    border-radius: 50px;
    line-height: 60px;
    transition: color 0.1s ease; /* Transition douce pour la couleur */
}

.containerbottom .button .icon i {
    font-size: 25px;
    line-height: 60px;
}

.containerbottom .button span {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    margin-left: 10px;
    opacity: 0; /* Cache le texte au départ */
    transition: opacity 0.1s ease 0.1; /* Transition pour l'affichage du texte après l'agrandissement */
    white-space: nowrap; /* Empêche le texte de se casser sur plusieurs lignes */
}

.containerbottom .button:hover span {
    opacity: 1; /* Affiche le texte au survol */
}


.mentioncontainer{
    color: white;
    display: block;
    position:  relative;
    margin-top: -110px;
    text-align: center;
    list-style: none;
   
   
}

.buttonmention:hover{
    color: #09632d;
    transition: color 0.3s ease; /* Transition douce pour le changement de couleur */
}


.buttonmention{
    color: white;
    text-decoration: none;

}




.cookie-banner {
    position: fixed; /* Fixe la bannière en bas de la fenêtre */
    bottom: 0;
    width: 100%;
    background-color: #333; /* Couleur de fond */
    color: white; /* Couleur du texte */
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Assure que la bannière reste au-dessus de tout autre élément */
    display: none; /* Cachée par défaut, jusqu'à ce qu'on la montre en JavaScript */
}

.cookie-banner p {
    margin: 0;
    display: inline-block;
    padding-right: 10px;
    font-family: 'Playfair Display', serif;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-banner button:hover {
    background-color: #ddd;
}

/* Calque sombre */
#darkOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Opacité à 50% */
    z-index: 999; /* Assure que le calque est au-dessus du contenu mais en dessous de la bannière */
    display: none; /* Caché par défaut */
}

/* Bannière de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000; /* Assure que la bannière est au-dessus du calque sombre */
    display: none;
}

.cookie-banner p {
    margin: 0;
    display: inline-block;
    padding-right: 10px;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-banner button:hover {
    background-color: #ddd;
}

.whatsapp-wrapper {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  left: auto !important;
  z-index: 1000000 !important;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease; /* Animation fluide pour la transformation */
  overflow: hidden; /* Masque le contenu jusqu'à l'expansion */
  position: relative;
}

/* Ajoute ceci à la fin de ton CSS */
.whatsapp-button .chat-content {
    display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.whatsapp-button.expanded .chat-content {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s 0.5s; /* Décale l'apparition après l'expansion */
}
.whatsapp-button.expanded {
  width: 400px;
  height: 550px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-button > i.fab.fa-whatsapp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40px;
  transition: opacity 0.3s, font-size 0.3s;
  z-index: 2;
  pointer-events: none;
}   
.whatsapp-button.expanded i.fab.fa-whatsapp {
  font-size:0px; /* Réduit la taille de l'icône quand la boîte s'ouvre */

  opacity: 0,7; /* Réduit l'opacité pour un effet de fond */
}

.chat-content {
  display: none; /* Masqué par défaut */
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px;
}
.chat-close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.chat-close-btn:hover {
  color: #25D366;
}
.whatsapp-button.expanded .chat-content {
  position: relative;
}

.whatsapp-button.expanded .chat-content {
  display: flex; /* Affiche le contenu quand .expanded est actif */
}
 .chat-header h3,
.whatsapp-open-btn {
  font-family: "Segoe UI", "San Francisco", "Roboto", Arial, sans-serif !important;
  letter-spacing: 0.01em;
}
.chat-header {
  background-color: #25D366;
  color: #fff;
  padding: 5px;
  text-align: center;
  font-size: 14px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
}

.chat-header h3 {
  margin: 10px;
  font-size: 25px;
  text-align: center;  
  margin-right: 51% ; /* Ajustement pour centrer le titre */;
}

.chat-header p {
  margin: 5px 0 0;
  font-size: 12px;
}

.chat-body {
  padding: 10px;
  max-height: 300px;
  max-width: 300px;
  font-size: 17px;
  color: #000000; /* Texte noir comme dans l'image */
  background-color: #e5e5ea; /* Gris clair typique des messages WhatsApp reçus */
  flex-grow: 1;
  position: relative;
  border-radius: 10px; /* Bordures arrondies */
  margin: 5px 20px; /* Espacement vertical */
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chat-body::before {
  content: "";
  position: absolute;
  left: -10px; /* Position du triangle à gauche */
  bottom: 10px; /* Ajustement vertical */
  width: 0;
  height: 0;
  border-top: 5px solid transparent; /* Triangle */
  border-bottom: 5px solid transparent; /* Triangle */
  border-right: 10px solid #e5e5ea; /* Couleur du fond de la bulle */
  transform: translateY(-50%);
}

.chat-footer {
  padding: 5px;
  text-align: center;
}

.whatsapp-open-btn {
  display: inline-block;
  margin-left: 200px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 20px;    /* Hauteur réduite (10px), largeur augmentée (40px) */
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.whatsapp-open-btn i {
  font-size: 30px;
  color: white;
  margin-left: 10px;
}

.whatsapp-open-btn:hover {
  background-color: #1ebe57;
}

.icon-animated-comment path {
  stroke: #fff;
  stroke-width: 32;
  fill: none;
  stroke-dasharray: 1800; /* Longueur du path adaptée à ce SVG */
  stroke-dashoffset: 1800;
  animation: draw-comment 1s linear forwards, erase-comment 1s 1s linear forwards;
  animation-iteration-count: infinite;
}

@keyframes draw-comment {
  from { stroke-dashoffset: 1800; }
  to   { stroke-dashoffset: 0; }
}

@keyframes erase-comment {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: 1800; }
}
@media (max-width: 600px) {
  .whatsapp-button.expanded {
    width: 250px;
    height: 180px;
  }
}


@keyframes fly-in-out {
    0% {
        transform: scale(0) translate3d(0, -1000px, 0);
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }
    15%,
    85% {
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1) translate3d(0, 0, 0);
        background: transparent;
        box-shadow: none;
    }
    100% {
        color: rgba(255, 255, 255, 1); /* Maintenir la couleur à la fin */
        transform: scale(1) translate3d(0, 0, 0);
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 810px) {
    .menu {
        display: none; /* Cacher le menu complet en-dessous de 810px */
    }

    .menu.show-menu {
        display: block; /* Afficher le menu complet lorsqu'on ajoute la classe 'show-menu' */
    }

    .menu-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menu-listing {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .menu-listing li {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }

    .menu-listing a {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .logo {
        width: 80px;
        margin-bottom: 20px;
    }

    .wrapper .wrapper1,
    .wrapper .wrapper2 {


       
        font-size: 25px;
   }


}


@media (max-width: 950px) {

    .wrapper .wrapper1,
    .wrapper .wrapper2 {


        
        font-size: 30px;
   }


}

@media (max-width: 485px){


    .green-button {
        font-size: 14px; /* Reduce font size on smaller screens */
        padding: 10px;
    }
    #bottom-arrow {
        display: block;
        margin: -10% auto 0; /* Centre le bouton et ajoute un espace au-dessus */
        font-size: 2rem; /* Taille de l'icône */
     
    }

    .wrapper .wrapper1,
    .wrapper .wrapper2 {

      
         font-size: 20px;
         padding-bottom: 40px;

}







}

@media (max-width: 500px) {

    .cookie-banner {
        margin-left: -10px;
     }
 

    .cookie-banner p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cookie-banner button {
        padding: 10px;
        font-size: 12px;
        width: 48%; /* Largeur pour occuper tout l'espace */
    }
    .Presentationtext {
        left: 0;
        padding-left: 0;
        margin-left: 0;
        width: 100%;
    }

    /* Éléments centraux sans déborder */
    .menu-container, .menu-listing, .wrapper {
        width: 100%;
    }

    /* Ajustez également la taille de l'image dans les conteneurs */
    .concierge-image {
        width: 100%;
    }
  
   
   
    menu {
      
        display: none; /* Toujours cacher le menu par défaut, même en petit écran */
    }

    .menu.show-menu {
        display: block; /* Afficher le menu si show-menu est actif */
    }

    .menu-container {
        padding-top: 100px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .menu-listing {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .menu-listing li {
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }

    .menu-listing a {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .logo {
        width: 80px;
        margin-bottom: 20px;
    }

    .mobile-menu {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 9999;
        padding-inline: 20px;
        background: #0d5a34;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-listing li:nth-child(2) a {   
        
    color: green;
    
    }
    .wrapper .wrapper1,
    .wrapper .wrapper2 {

         margin-top: -40px;
         font-size: 20px;
         padding-bottom: 40px;

}
 
#bottom-arrow {
    display: block;
    margin: -5% auto 0; /* Centre le bouton et ajoute un espace au-dessus */
    font-size: 2rem; /* Taille de l'icône */
 
}
}



@media (max-width: 430px) {

    .ImagePresentation{
        margin-top: 70px;
    }

.contact-info p {
    margin-left: 15px;
    font-size: 14px;
}

}



@media (max-width: 417px) {

    .contact-info p {
        margin-left: 15px;
        font-size: 13px;
    }

    .ImagePresentation {
        width: 200%; /* Or any percentage larger than the default */
        height: auto;
    }


    .wrapper .wrapper1,
    .wrapper .wrapper2 {

         margin-top: -30px;
         font-size: 15px;
         padding-bottom: 40px;

}
    
}
    



@media (max-width: 410px) {

    .contact-info p {
        margin-left: 15px;
        font-size: 13px;
    }


    



}
    




@media (min-width: 811px) {
    .mobile-menu {
        display: none; /* Cacher le menu mobile */
    }

    .menu {
        display: block; /* Afficher le menu complet */
    }
}

@keyframes reveal {
   from {
    transform: scale(0);
    opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


    
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
  .whatsapp-button.expanded {
    width: 95vw !important;
    max-width: 99vw;
    height: 70vh !important;
    min-height: 320px;
    border-radius: 20px !important;
    right: -2vw  !important;
    left: auto !important;
    bottom: 10px !important;
  }


  .whatsapp-button .chat-content,
  .whatsapp-button.expanded .chat-content {
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    min-height: 0;
    padding: 0 !important;
    border-radius: 20px !important;
    font-size: 1em;
  }
  
  .chat-header h3 {
    font-size: 18px !important;
    margin-right: 0 !important;
  }
  .chat-body {
    max-width: 100% !important;
    font-size: 15px !important;
    margin: 5px 5px !important;
    padding: 8px !important;
  }
  .chat-footer {
    padding: 5px !important;
  }
  .whatsapp-open-btn {
    margin-left: 0 !important;
    width: 90% !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
  }
  .chat-close-btn {
    top: 8px !important;
    right: 10px !important;
    font-size: 1.5rem !important;
  }
  
}